f5bb0d1d193ac4ab690381ccc58dd030ab0c5a1d,sdk/com.ibm.sbt.core/src/main/java/com/ibm/sbt/services/client/connections/profiles/ProfileService.java,ProfileService,getColleagueConnectionEntityList,#String#Map#,971

Before Change



	protected EntityList<ColleagueConnection> getColleagueConnectionEntityList(String requestUrl, Map<String, String> parameters) throws ClientServicesException {
		//Issue 1579: Fixes issue with the NOT_FOUND
		ColleagueConnection result = null;
		IFeedHandler<ColleagueConnection> handler = getColleagueFeedHandler();
		
		Response response = getClientService().get(requestUrl,parameters);
		
		try{
			checkResponseCode(response,HTTPCode.OK);
			result = handler.createEntity(response);
		}catch(ClientServicesException cse){
			checkResponseCode(response,HTTPCode.NOT_FOUND);
		}
		
		return result;
	}

	protected EntityList<Tag> getTagEntityList(String requestUrl, Map<String, String> parameters) throws ClientServicesException {

After Change


	}

	protected EntityList<ColleagueConnection> getColleagueConnectionEntityList(String requestUrl, Map<String, String> parameters) throws ClientServicesException {
		return getEntities(requestUrl, parameters, getColleagueFeedHandler());
	}

	protected EntityList<Tag> getTagEntityList(String requestUrl, Map<String, String> parameters) throws ClientServicesException {